home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_10 / phillip2 / shear.bat < prev    next >
DOS Batch File  |  1994-03-04  |  631b  |  22 lines

  1.  
  2. echo off
  3. rem   This bat file has the commands to shear an input
  4. rem   image named in.tif four different ways and
  5. rem   then put these side by side into an output
  6. rem   image named shear.tif
  7.  
  8. warp in.tif sh1.tif object -20 0 100 0 120 100 0 100 1 1 1
  9. warp in.tif sh2.tif object 0 0 120 0 100 100 -20 100 1 1 1
  10. warp in.tif sh3.tif object 0 -20 100 0 100 120 0 100 1 1 1
  11. warp in.tif sh4.tif object 0 0 100 -20 100 100 0 120 1 1 1
  12. side sh1.tif sh2.tif tmp1.tif side
  13. side sh3.tif sh4.tif tmp2.tif side
  14. side tmp1.tif tmp2.tif shear.tif top
  15. del sh1.tif
  16. del sh2.tif
  17. del sh3.tif
  18. del sh4.tif
  19. del tmp1.tif
  20. del tmp2.tif
  21.  
  22.